在小型独立窗口中打开页面
字数
61 字
阅读时间
1 分钟
javascript
function openMiniWindow (url, width = 500, height = 500) {
let left = 400, top = 200
if (screen) {
left = screen.width / 2 - width / 2
top = screen.height / 2 - height / 2
}
window.open(
url, undefined,
`width=${width},height=${height},left=${left},top=${top}`
)
}